home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / bluez.postinst < prev    next >
Text File  |  2008-10-26  |  2KB  |  58 lines

  1. #!/bin/sh
  2. # snippet from http://www.dpkg.org/dpkg/ConffileHandling
  3.  
  4. # Move a conffile without triggering a dpkg question
  5. mv_conffile() {
  6.     OLDCONFFILE="$1"
  7.     NEWCONFFILE="$2"
  8.  
  9.     if [ -e "$OLDCONFFILE" ]; then
  10.         echo "Preserving user changes to $NEWCONFFILE ..."
  11.         mv -f "$NEWCONFFILE" "$NEWCONFFILE".dpkg-new
  12.         mv -f "$OLDCONFFILE" "$NEWCONFFILE"
  13.     fi
  14. }
  15.  
  16. set -e
  17. case "$1" in
  18.     configure)
  19.         if [ -e /etc/init.d/bluez-utils ]; then
  20.             /usr/sbin/update-rc.d -f bluez-utils remove
  21.             # maybe a (medium/low debconf?) notice is best suited here
  22.         fi
  23.  
  24.         # use MAKEDEV instead of the original bluez script below as per policy 10.6
  25.         if [ -x /dev/MAKEDEV ]; then
  26.             echo "Creating device nodes ..."
  27.             cd /dev && ./MAKEDEV bluetooth 1>/dev/null 2>/dev/null
  28.         fi
  29.         # reload dbus config file
  30.         if [ -x /etc/init.d/dbus ]; then
  31.             invoke-rc.d dbus force-reload || true
  32.         fi
  33.  
  34.     #reload udev rules
  35.     if [ -x /etc/init.d/udev ]; then
  36.             invoke-rc.d udev reload || true
  37.     fi
  38.  
  39.         ;;
  40.  
  41.     *)
  42.         echo "postinst called with unknown argument \`$1'" >&2
  43.         exit 0
  44.     ;;
  45. esac
  46.  
  47. # Automatically added by dh_installinit
  48. if [ -x "/etc/init.d/bluetooth" ]; then
  49.     update-rc.d bluetooth start 25 2 3 4 5 . stop 74 0 1 6 . >/dev/null
  50.     if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
  51.         invoke-rc.d bluetooth start || exit $?
  52.     else
  53.         /etc/init.d/bluetooth start || exit $?
  54.     fi
  55. fi
  56. # End automatically added section
  57.  
  58.